from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

76020

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
rate this article:
current rating: average rating: 1.7 (18 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-06-03
DBD-MariaDB - 1.240.0
Ebuild name:

dev-perl/DBD-MariaDB-1.240.0

Description

MariaDB and MySQL driver for the Perl5 Database Interface (DBI)

Added to portage

2025-06-03

abseil-cpp - 20250512.0
Ebuild name:

dev-cpp/abseil-cpp-20250512.0

Description

Abseil Common Libraries (C++), LTS Branch

Added to portage

2025-06-03

android-file-transfer-linux - 4.5
Ebuild name:

sys-fs/android-file-transfer-linux-4.5

Description

Android File Transfer for Linux

Added to portage

2025-06-03

anki - 25.02.6
Ebuild name:

app-misc/anki-25.02.6

Description

A spaced-repetition memory training program (flash cards)

Added to portage

2025-06-03

awscli - 1.40.27
Ebuild name:

app-admin/awscli-1.40.27

Description

Universal Command Line Environment for AWS

Added to portage

2025-06-03

bash - 5.3_rc2
Ebuild name:

app-shells/bash-5.3_rc2

Description

The standard GNU Bourne again shell

Added to portage

2025-06-03

boto3 - 1.38.28
Ebuild name:

dev-python/boto3-1.38.28

Description

The AWS SDK for Python

Added to portage

2025-06-03

botocore - 1.38.28
Ebuild name:

dev-python/botocore-1.38.28

Description

Low-level, data-driven core of boto 3

Added to portage

2025-06-03

bpftrace - 0.23.4
Ebuild name:

dev-debug/bpftrace-0.23.4

Description

High-level tracing language for eBPF

Added to portage

2025-06-03

brial - 1.2.12-r1
Ebuild name:

sci-libs/brial-1.2.12-r1

Description

A C++ library for polynomials over boolean rings

Added to portage

2025-06-03

ca-certificates - 20250419.3.112
Ebuild name:

app-misc/ca-certificates-20250419.3.112

Description

Common CA Certificates PEM files

Added to portage

2025-06-03

cfn-lint - 1.35.4
Ebuild name:

dev-python/cfn-lint-1.35.4

Description

CloudFormation Linter

Added to portage

2025-06-03

dj-database-url - 3.0.0
Ebuild name:

dev-python/dj-database-url-3.0.0

Description

Use Database URLs in your Django Application

Added to portage

2025-06-03

dotnet-sdk-bin - 9.0.300
Ebuild name:

dev-dotnet/dotnet-sdk-bin-9.0.300

Description

.NET is a free, cross-platform, open-source developer platform

Added to portage

2025-06-03

findimports - 2.6.0
Ebuild name:

dev-python/findimports-2.6.0

Description

Python module import analysis tool

Added to portage

2025-06-03

frozenlist - 1.6.1
Ebuild name:

dev-python/frozenlist-1.6.1

Description

A list-like structure which implements collections.abc.MutableSequence

Added to portage

2025-06-03

gcc - 16.0.0_p20250601-r1
Ebuild name:

sys-devel/gcc-16.0.0_p20250601-r1

Description

The GNU Compiler Collection

Added to portage

2025-06-03

google-api-core - 2.25.0
Ebuild name:

dev-python/google-api-core-2.25.0

Description

Core Library for Google Client Libraries

Added to portage

2025-06-03

google-protobuf - 4.31.1
Ebuild name:

dev-ruby/google-protobuf-4.31.1

Description

Protocol Buffers are Google's data interchange format

Added to portage

2025-06-03

knot-resolver - 6.0.13
Ebuild name:

net-dns/knot-resolver-6.0.13

Description

A scaleable caching DNS resolver

Added to portage

2025-06-03

libdvbpsi - 1.3.3-r1
Ebuild name:

media-libs/libdvbpsi-1.3.3-r1

Description

Library for MPEG TS/DVB PSI tables decoding and generation

Added to portage

2025-06-03

libffi - 3.5.0_rc0
Ebuild name:

dev-libs/libffi-3.5.0_rc0

Description

Portable, high level programming interface to various calling conventions

Added to portage

2025-06-03

libmaxminddb - 1.12.2
Ebuild name:

dev-libs/libmaxminddb-1.12.2

Description

C library for the MaxMind DB file format

Added to portage

2025-06-03

libnvidia-container - 1.17.8
Ebuild name:

sys-libs/libnvidia-container-1.17.8

Description

NVIDIA container runtime library

Added to portage

2025-06-03

librnp - 0.18.0
Ebuild name:

dev-util/librnp-0.18.0

Description

High performance C++ OpenPGP library

Added to portage

2025-06-03

m4ri - 20250128-r1
Ebuild name:

sci-libs/m4ri-20250128-r1

Description

Method of four russian for inversion (M4RI)

Added to portage

2025-06-03

m4rie - 20250103-r2
Ebuild name:

sci-libs/m4rie-20250103-r2

Description

Fast dense matrix arithmetic over GF(2^e) for 2 <= e <= 16

Added to portage

2025-06-03

nvidia-container-toolkit - 1.17.8
Ebuild name:

app-containers/nvidia-container-toolkit-1.17.8

Description

NVIDIA container runtime toolkit

Added to portage

2025-06-03

obs-studio - 31.0.3-r2
Ebuild name:

media-video/obs-studio-31.0.3-r2

Description

Software for Recording and Streaming Live Video Content

Added to portage

2025-06-03

openmw - 0.49.0_rc7-r1
Ebuild name:

games-engines/openmw-0.49.0_rc7-r1

Description

Open source reimplementation of TES III Morrowind

Added to portage

2025-06-03

pfuture - 1.10.3
Ebuild name:

app-emacs/pfuture-1.10.3

Description

Simple wrapper around asynchronous processes

Added to portage

2025-06-03

php-mode - 1.27.0
Ebuild name:

app-emacs/php-mode-1.27.0

Description

GNU Emacs major mode for editing PHP code

Added to portage

2025-06-03

php-mode - 9999
Ebuild name:

app-emacs/php-mode-9999

Description

GNU Emacs major mode for editing PHP code

Added to portage

2025-06-03

picotool - 2.1.1
Ebuild name:

dev-embedded/picotool-2.1.1

Description

tool for interacting with rp2040 devices and binaries

Added to portage

2025-06-03

ppx_variants_conv - 0.17.0-r1
Ebuild name:

dev-ml/ppx_variants_conv-0.17.0-r1

Description

Generation of accessor and iteration functions for ocaml variant

Added to portage

2025-06-03

ppxlib - 0.33.0-r1
Ebuild name:

dev-ml/ppxlib-0.33.0-r1

Description

Base library and tools for ppx rewriters

Added to portage

2025-06-03

protobuf - 31.1
Ebuild name:

dev-libs/protobuf-31.1

Description

Google's Protocol Buffers - Extensible mechanism for serializing structured

Added to portage

2025-06-03

pwndbg - 20250530
Ebuild name:

dev-debug/pwndbg-20250530

Description

A GDB plug-in that makes debugging with GDB suck less

Added to portage

2025-06-03

readline - 8.3_rc2
Ebuild name:

sys-libs/readline-8.3_rc2

Description

Another cute console display library

Added to portage

2025-06-03

record_builder - 0.17.0-r1
Ebuild name:

dev-ml/record_builder-0.17.0-r1

Description

A library which provides traversal of records with an applicative

Added to portage

2025-06-03

rtorrent - 0.15.3-r1
Ebuild name:

net-p2p/rtorrent-0.15.3-r1

Description

BitTorrent Client using libtorrent

Added to portage

2025-06-03

sendmail - 8.18.1.10
Ebuild name:

mail-mta/sendmail-8.18.1.10

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2025-06-03

service-manager - 2
Ebuild name:

virtual/service-manager-2

Description

Virtual for various service managers

Added to portage

2025-06-03

taglib - 2.1
Ebuild name:

media-libs/taglib-2.1

Description

Library for reading and editing audio meta data

Added to portage

2025-06-03

texmaker - 6.0.1
Ebuild name:

app-office/texmaker-6.0.1

Description

Powerful LaTeX-IDE

Added to portage

2025-06-03

texstudio - 4.8.7
Ebuild name:

app-office/texstudio-4.8.7

Description

Free cross-platform LaTeX editor (fork from texmakerX)

Added to portage

2025-06-03

transient - 0.9.0
Ebuild name:

app-emacs/transient-0.9.0

Description

Transient commands abstraction for GNU Emacs

Added to portage

2025-06-03

unshield - 1.6.2-r1
Ebuild name:

app-arch/unshield-1.6.2-r1

Description

InstallShield CAB file extractor

Added to portage

2025-06-03

vnstat - 2.13-r1
Ebuild name:

net-analyzer/vnstat-2.13-r1

Description

Console-based network traffic monitor that keeps statistics of network

Added to portage

2025-06-03

with-editor - 3.4.4
Ebuild name:

app-emacs/with-editor-3.4.4

Description

Use the Emacsclient as the of child processes

Added to portage

2025-06-03

2025-06-02
base - 0.17.2
Ebuild name:

dev-ml/base-0.17.2

Description

Standard library for OCaml

Added to portage

2025-06-02

calf - 0.90.6-r1
Ebuild name:

media-plugins/calf-0.90.6-r1

Description

Set of open source instruments and effects for digital audio workstati

Added to portage

2025-06-02

candy - 6.0.4
Ebuild name:

net-vpn/candy-6.0.4

Description

A reliable, low-latency, and anti-censorship virtual private network

Added to portage

2025-06-02

claude-code - 1.0.6
Ebuild name:

dev-util/claude-code-1.0.6

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-06-02

cramjam - 2.11.0_rc3
Ebuild name:

dev-python/cramjam-2.11.0_rc3

Description

Thin Python bindings to de/compression algorithms in Rust

Added to portage

2025-06-02

cypari2 - 2.2.2
Ebuild name:

dev-python/cypari2-2.2.2

Description

Cython interface to PARI

Added to portage

2025-06-02

dcfldd - 1.9.3
Ebuild name:

sys-apps/dcfldd-1.9.3

Description

enhanced dd with features for forensics and security

Added to portage

2025-06-02

dhcpcd - 10.2.4
Ebuild name:

net-misc/dhcpcd-10.2.4

Description

A fully featured, yet light weight RFC2131 compliant DHCP client

Added to portage

2025-06-02

drkonqi - 6.3.5-r1
Ebuild name:

kde-plasma/drkonqi-6.3.5-r1

Description

Plasma crash handler, gives the user feedback if a program crashed

Added to portage

2025-06-02

exo - 1.84.1
Ebuild name:

app-admin/exo-1.84.1

Description

Command-line tool for everything at Exoscale compute, storage, dns

Added to portage

2025-06-02

ezlib - 1.0.14
Ebuild name:

dev-erlang/ezlib-1.0.14

Description

Native zlib driver for Erlang and Elixir

Added to portage

2025-06-02

fast_tls - 1.1.23
Ebuild name:

dev-erlang/fast_tls-1.1.23

Description

TLS/SSL native driver for Erlang and Elixir

Added to portage

2025-06-02

fast_xml - 1.1.56
Ebuild name:

dev-erlang/fast_xml-1.1.56

Description

Fast Expat based Erlang XML parsing library

Added to portage

2025-06-02

freedoko - 0.8.1
Ebuild name:

games-board/freedoko-0.8.1

Description

FreeDoko is a Doppelkopf-game

Added to portage

2025-06-02

gcc - 16.0.0_p20250601
Ebuild name:

sys-devel/gcc-16.0.0_p20250601

Description

The GNU Compiler Collection

Added to portage

2025-06-02

haproxy - 3.2.0
Ebuild name:

net-proxy/haproxy-3.2.0

Description

A TCP/HTTP reverse proxy for high availability environments

Added to portage

2025-06-02

haproxy - 3.2.9999
Ebuild name:

net-proxy/haproxy-3.2.9999

Description

A TCP/HTTP reverse proxy for high availability environments

Added to portage

2025-06-02

hcloud - 1.51.0
Ebuild name:

app-admin/hcloud-1.51.0

Description

A command-line interface for Hetzner Cloud

Added to portage

2025-06-02

jq - 1.8.0
Ebuild name:

app-misc/jq-1.8.0

Description

A lightweight and flexible command-line JSON processor

Added to portage

2025-06-02

kombu - 5.5.4
Ebuild name:

dev-python/kombu-5.5.4

Description

AMQP Messaging Framework for Python

Added to portage

2025-06-02

kscreen - 6.3.5-r1
Ebuild name:

kde-plasma/kscreen-6.3.5-r1

Description

KDE Plasma screen management

Added to portage

2025-06-02

kwin - 6.3.5-r1
Ebuild name:

kde-plasma/kwin-6.3.5-r1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-06-02

libarchive - 3.8.1
Ebuild name:

app-arch/libarchive-3.8.1

Description

Multi-format archive and compression library

Added to portage

2025-06-02

libnl - 3.11.0
Ebuild name:

dev-libs/libnl-3.11.0

Description

Libraries providing APIs to netlink protocol based Linux kernel interfaces

Added to portage

2025-06-02

libreoffice - 25.2.4.2
Ebuild name:

app-office/libreoffice-25.2.4.2

Description

A full office productivity suite

Added to portage

2025-06-02

libreoffice-l10n - 25.2.4.2
Ebuild name:

app-office/libreoffice-l10n-25.2.4.2

Description

Translations for the Libreoffice suite

Added to portage

2025-06-02

libsigrok - 0.6.0_pre20241020
Ebuild name:

sci-libs/libsigrok-0.6.0_pre20241020

Description

Basic hardware drivers for logic analyzers and input/output fi

Added to portage

2025-06-02

libsigrokdecode - 0.6.0_pre20241001
Ebuild name:

sci-libs/libsigrokdecode-0.6.0_pre20241001

Description

Provide (streaming) protocol decoding functionality

Added to portage

2025-06-02

liburing - 2.10-r1
Ebuild name:

sys-libs/liburing-2.10-r1

Description

Efficient I/O with io_uring

Added to portage

2025-06-02

libusb - 1.0.29
Ebuild name:

dev-libs/libusb-1.0.29

Description

Userspace access to USB devices

Added to portage

2025-06-02

mdbook - 0.4.51
Ebuild name:

app-text/mdbook-0.4.51

Description

Create a book from markdown files

Added to portage

2025-06-02

naev - 0.12.5
Ebuild name:

games-strategy/naev-0.12.5

Description

2D space trading and combat game, in a similar vein to Escape Velocity

Added to portage

2025-06-02

ncurses - 6.5_p20250531
Ebuild name:

sys-libs/ncurses-6.5_p20250531

Description

Console display library

Added to portage

2025-06-02

p1_acme - 1.0.26
Ebuild name:

dev-erlang/p1_acme-1.0.26

Description

ACME client library for Erlang

Added to portage

2025-06-02

pathable - 0.5.0_alpha3
Ebuild name:

dev-python/pathable-0.5.0_alpha3

Description

Object-oriented paths

Added to portage

2025-06-02

pfuture - 1.10.3
Ebuild name:

app-emacs/pfuture-1.10.3

Description

Simple wrapper around asynchronous processes

Added to portage

2025-06-02

php-mode - 1.27.0
Ebuild name:

app-emacs/php-mode-1.27.0

Description

GNU Emacs major mode for editing PHP code

Added to portage

2025-06-02

php-mode - 9999
Ebuild name:

app-emacs/php-mode-9999

Description

GNU Emacs major mode for editing PHP code

Added to portage

2025-06-02

pkgcore - 0.12.30
Ebuild name:

sys-apps/pkgcore-0.12.30

Description

a framework for package management

Added to portage

2025-06-02

plasma-meta - 6.3.5-r1
Ebuild name:

kde-plasma/plasma-meta-6.3.5-r1

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2025-06-02

plasma-workspace - 6.3.5-r2
Ebuild name:

kde-plasma/plasma-workspace-6.3.5-r2

Description

KDE Plasma workspace

Added to portage

2025-06-02

powerdevil - 6.3.5-r2
Ebuild name:

kde-plasma/powerdevil-6.3.5-r2

Description

Power management for KDE Plasma Shell

Added to portage

2025-06-02

pulseview - 0.4.2_p20250515
Ebuild name:

sci-electronics/pulseview-0.4.2_p20250515

Description

Qt based logic analyzer GUI for sigrok

Added to portage

2025-06-02

pypdf - 5.6.0
Ebuild name:

dev-python/pypdf-5.6.0

Description

Python library to work with PDF files

Added to portage

2025-06-02

qemu - 10.0.2
Ebuild name:

app-emulation/qemu-10.0.2

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2025-06-02

qemu - 9.2.4
Ebuild name:

app-emulation/qemu-9.2.4

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2025-06-02

r8152 - 2.20.1
Ebuild name:

net-misc/r8152-2.20.1

Description

r8152 driver for Realtek USB FE / GBE / 2.5G Gaming Ethernet Family Controlle

Added to portage

2025-06-02

rtrlib - 0.8.0-r1
Ebuild name:

net-libs/rtrlib-0.8.0-r1

Description

An open-source C implementation of the RPKI/Router Protocol client

Added to portage

2025-06-02

sandmann-bin - 1.4.1-r1
Ebuild name:

sys-power/sandmann-bin-1.4.1-r1

Description

An autosuspend and wakeup daemon

Added to portage

2025-06-02

sandmann-ctrl - 0
Ebuild name:

acct-group/sandmann-ctrl-0

Description

Added to portage

2025-06-02

scikit-build-core - 0.11.4
Ebuild name:

dev-python/scikit-build-core-0.11.4

Description

Build backend for CMake based projects

Added to portage

2025-06-02

sexp_pretty - 0.17.0-r1
Ebuild name:

dev-ml/sexp_pretty-0.17.0-r1

Description

S-expression pretty-printer

Added to portage

2025-06-02

simsimd - 6.4.7
Ebuild name:

dev-python/simsimd-6.4.7

Description

Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm

Added to portage

2025-06-02

splittable_random - 0.17.0-r1
Ebuild name:

dev-ml/splittable_random-0.17.0-r1

Description

PRNG that can be split into independent streams

Added to portage

2025-06-02

stdio - 0.17.0-r1
Ebuild name:

dev-ml/stdio-0.17.0-r1

Description

Standard IO Library for OCaml

Added to portage

2025-06-02

tifffile - 2025.6.1
Ebuild name:

dev-python/tifffile-2025.6.1

Description

Read and write TIFF files

Added to portage

2025-06-02

time_now - 0.17.0-r1
Ebuild name:

dev-ml/time_now-0.17.0-r1

Description

Reports the current time

Added to portage

2025-06-02

tuxedo-drivers - 4.13.1
Ebuild name:

app-laptop/tuxedo-drivers-4.13.1

Description

Kernel modules for TUXEDO laptops

Added to portage

2025-06-02

typerep - 0.17.1-r1
Ebuild name:

dev-ml/typerep-0.17.1-r1

Description

Library for creating runtime representation of OCaml types

Added to portage

2025-06-02

types-psutil - 7.0.0.20250601
Ebuild name:

dev-python/types-psutil-7.0.0.20250601

Description

Typing stubs for psutil

Added to portage

2025-06-02

uopt - 0.17.0-r1
Ebuild name:

dev-ml/uopt-0.17.0-r1

Description

An [option]-like type that incurs no allocation

Added to portage

2025-06-02

uvicorn - 0.34.3
Ebuild name:

dev-python/uvicorn-0.34.3

Description

Lightning-fast ASGI server implementation

Added to portage

2025-06-02

variantslib - 0.17.0-r1
Ebuild name:

dev-ml/variantslib-0.17.0-r1

Description

OCaml variants as first class values

Added to portage

2025-06-02

vboot-utils - 138_p20250522
Ebuild name:

sys-boot/vboot-utils-138_p20250522

Description

Chrome OS verified boot tools

Added to portage

2025-06-02

wine-staging - 10.9
Ebuild name:

app-emulation/wine-staging-10.9

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patch

Added to portage

2025-06-02

wine-vanilla - 10.9
Ebuild name:

app-emulation/wine-vanilla-10.9

Description

Free implementation of Windows(tm) on Unix, without external patchs

Added to portage

2025-06-02

xmpp - 1.10.1
Ebuild name:

dev-erlang/xmpp-1.10.1

Description

XMPP parsing and serialization library on top of Fast XML

Added to portage

2025-06-02

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 50.2 ms